home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 026-050 / scopedisk32 / access141 / update.doc < prev    next >
Text File  |  1995-03-18  |  8KB  |  144 lines

  1. ------------------------------------------------------------------------------
  2. Update.doc         -- Access! (C) 1987/88 By Keith Young --
  3.  
  4. Other text files in this archive:
  5.     Access!me        The origional 'doc' file describing most of Access!'s
  6.                     features.
  7.  
  8.     Script.doc        Documentation describing Acc!'s new scripting language.
  9.  
  10. ------------------------------------------------------------------------------
  11.       Time:    -23:-
  12.       Date:    9/21/88
  13.    Subject:    Changes/Additions to Access! Ver 1.41 since 1.4
  14.  
  15.         This release (1.41) of Access! is mostly a 'bug-fix' version for 
  16.     1.4 and as such does not add any major new features... although there
  17.     are a few changes/additions that I concider significant. These you will
  18.     find listed in the top part of this file, with the bug/feature fixes
  19.     listed afterwards.
  20.         As I am still trying to get the regular 'doc' file organized /
  21.     re-written, I have not updated it (Acces!me) for this release, but have
  22.     included it for new users... thank you for bearing with me. 
  23.  
  24.  
  25. o        'rd' -- although 'rd' (the text file reader) is now a few bytes
  26.     smaller (68 bytes to be exact 8) it has a new 'Iconify' feature...
  27.         Once you are reading a file, pressing Function key #1 ( F-1 ) while
  28.     the 'rd' window is active will cause it to shrink up into a title-bar
  29.     sized window that you can drag/place in a convenient spot until you are
  30.     ready for it again.
  31.         While in this 'Iconified' state, there is a 'close' gadget (used to
  32.     open (yeah, I know 8) it back up to normal size), front/back gadgets 
  33.     (act as normal window depth-arranging gadgets) and an area in-between
  34.     with 'rd' displayed that you can used to drag the window.
  35. (NOTE: clicking the 'close' gadget when 'rd' is in it's normal, un-iconified
  36.     state QUITS the 'rd' program)
  37.         When you shrink the window, it first saves it's location and size
  38.     so that upon re-opening it, it returns to that possition/size. (it also
  39.     remembers where it was possitioned in it's 'Iconified' state).
  40.         'rd' will _now_ open on the current 'Front-Screen'. So that (unlike
  41.     it acted in version 1.4) if Access! is running, but WBench (or any other
  42.     screen) is in front when it is invoked... it will live on _that_ screen.
  43.  
  44.         Other programmers are welcome to take advantage of this and 
  45.     distribute (_this_ 1.41 version of) 'rd' with thier _non-commercial_ 
  46.     product as long as credit is given to myself somewhere in the docs.
  47.     (programs using custom screens, allowing 'leach' programs on thier screen
  48.     should have some provision of checking to make sure all windows are 
  49.     closed/removed before closing the parent screen. Here's one example (and
  50.     what *I* use) of how you might do this...(pseudo code)
  51.         while( myscreen->FirstWindow )
  52.             AutoRequest( ..."Please Close all windows on this screen"...);
  53.         CloseScreen( myscreen );
  54.  
  55. o        Iconify -- speaking of Iconify, Access! itself also now has a 
  56.     similar feature... selecting "Iconify" (from the "Project" menu) will
  57.     cause Acc! to close up all of it's windows and custom screen and open
  58.     a small title-bar sized window on the WorkBench screen until you are
  59.     ready for it again.
  60.         While in this iconified state, Acc! will _still_ recieve in-comming
  61.     text and store it in the review buffer as normal. However, it will NOT
  62.     (currently) continue any kind of file-transfer so please do NOT try it
  63.     while you are in the middle of a transfer. (yes, this would be a handy
  64.     feature while doing a long transfer... it's _planned_ for a future
  65.     version, so please don't waste your time (and mine) suggesting it <grin>.
  66.     Actually, my guess is, 8 out of 10 people never read this stuff... so 
  67.     I'll end up having to respond to a lot of 'bug' reports anyway... <sigh>)
  68.         To re-open Acc! to it's normal/un-iconified state, click on the
  69.     'close' gadget on the little window.
  70.  
  71. o        Read Text File -- new menuitem added (in the "Project" menu) to give
  72.     further access <ahem> and 'menu key sequence' to the text file reader 
  73.     ('rd').  Also, version 1.4 of Acc! looked in the C: directory for 'rd',
  74.     it will now first look in the 'current directory' (the one you were cd'd
  75.     to when you booted Acc!) and then the C: directory.
  76.  
  77. o        Online help -- well... similar to the above item, there is another
  78.     new menuitem in the Project menu labeled "Help".  This selection is just
  79.     a quick way to have a text file loaded into 'rd'... it is hard-coded to
  80.     look for a file called "Acc!.hlp" in the current "System Dir:" (specified
  81.     on the DEFINE window).  The idea here was/is to have an 'online help'
  82.     file for quick reference to keyboard commands etc... but I haven't had
  83.     the time to actually write that file yet <grin>.  It can, of course be
  84.     any text file named "Acc!.hlp", so you might opt not to use my (future)
  85.     online-help file, and use this feature to bring up a list of user-ids
  86.     or any other information you'd like to have handy while online.
  87.  
  88. o        Optimized -- Much crunching took place for this release... Acc! is 
  89.     now roughly 25,000 bytes smaller on disk and should use a bit less CHIP
  90.     mem while running. (that should give you a little more room on disk for
  91.     these 'doc' files... hint, hint <grin> )
  92.  
  93.  
  94.     ---------------- Bug/Feature Fixes Below -------------------- 
  95.  
  96. o        Re-draw -- version 1.4 of Acc! introduced a feature that re-drew the
  97.     text of the screen if it had been cleared by some other user-invoked
  98.     feature (going in/out of CHAT mode, changing fonts, colors, Interlace,
  99.     etc.).  There was one slight bug in this... the last line received was
  100.     not _always_ re-printed... this is fixed now.
  101.  
  102. o        NewCli -- also introduced in 1.4 was a feature that opened a CLI or
  103.     a WShell window on Acc!'s screen if you had 'conman' running... this
  104.     window had a 'close gadget' on it (using a feature of 'conman'). Well, it
  105.     seems that _sometimes_ clicking on this clse-gadget killed the CLI, but
  106.     left the window open (with no way to close it).  This version will not
  107.     use the close-gadget... until this problem can be tracked down and fixed.
  108.  
  109. o        File-Requester Sort -- This was touched on in 1.4 and again for this
  110.     version... it now acts how I want/invisioned it to <grin>.
  111.  
  112. o        Clear-Screen -- it seems that in adding a feature to 1.4 that would
  113.     move the cursor down one line if a 'clear-screen' code was received _and_
  114.     a gadget-bar was at the top of the screen... caused a small bugglet...
  115.     if you had _no_ gadget-bar up top, and got a clear-screen, it didn't. 8)
  116.     This is now fixed.
  117.  
  118. o        Scripts -- although no new features were added in this version, there
  119.     was a small problem... when trying to select a script to execute, the
  120.     file-requester came up looking in the "System Dir:" but after you
  121.     selected one, the term then looked in the "Download Dir:" for the script...
  122.     unless they were the same place, the term never found it. <duck>
  123.     This is now fixed. (it looks i the "System Dir:", a future version may
  124.     have a seporate directory/path for scripts)
  125.  
  126. o        Multi-Auto-Redial -- (well, somewhere in there 8) when multiple
  127.     numbers were selected, and a connection was made with one, then 'Redial'
  128.     was selected to continue to the next number in the list... it re-dialed
  129.     the last again... I think this has been fixed... let me know if there
  130.     are any inconsistancies (sp) left in the way that whole mess works <grin>
  131.  
  132. o        WXmodem Upload -- there was a bug (since 1.3a) in the WXmodem upload
  133.     routine that may or may not have effected you... it wasn't a fatal bug,
  134.     but caused the transfer to 'pause' for a (several) short periods during
  135.     the transfer thus slowing things down a bit. This is fixed now.
  136.  
  137. o        Etc... -- I'm sure there were several other minor changes, but they
  138.     escape me at the moment.
  139.  
  140.         That's all for now (at least that I remember)... Keep those 
  141.     suggestions, comments and (especially) registrations comming...
  142.         Enjoy,
  143.                 - Keith
  144.